-
-
Notifications
You must be signed in to change notification settings - Fork 567
compat: Remove direct dependency on pandas #8236
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
ec90fae to
87c744f
Compare
87c744f to
4dbaf90
Compare
|
Great start, though we need to work on removing the dependency in bokeh first. |
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #8236 +/- ##
==========================================
- Coverage 86.02% 81.95% -4.07%
==========================================
Files 348 348
Lines 54437 54475 +38
==========================================
- Hits 46827 44647 -2180
- Misses 7610 9828 +2218 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
| assert location.search == "?dataframe=%5B%7B%22x%22%3A+1%7D%5D" | ||
|
|
||
| def test_location_sync_to_dataframe(location, dataframe): | ||
| pd = pytest.importorskip("pandas") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we convert these to decorators, i.e.:
pd_available = pytest.mark.skipif(pd is None, reason="requires pandas")
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, will do this before a merge. For now this is easier to do.
ffc4c64 to
11dd401
Compare
Really early. This is to test-run our testsuite without having Pandas as a direct dependency.